home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ SFP Options 4.xpl < prev    next >
Text File  |  2001-04-12  |  1KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="System\Software Installation\Windows File Protection"
  5. "NAME"="WFP Disk Quota"
  6. "VERSION"="1.14"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Quota (MB)"
  10. "DESCRIPTION 1"="By default, WFP uses an unlimited amount of disk space for it's cache of system files."
  11. "DESCRIPTION 2"="However, you can limit this space here to suit your needs."
  12. "DESCRIPTION 3"="To have the default value again, just clear the field."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19.  
  20. sV1="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SFCQuota" 'DW 
  21. sV1_Val=4294967295 
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.     s=RegReadValue(sV1)
  26.  
  27.     'NOTE: this number is so BIG, you need to compare it as string...
  28.     if s=cstr(sV1_Val) or IsEmpty(s) then 
  29.        setuielement 1,"" 'default value, set to empty field
  30.     else
  31.        setuielement 1,s
  32.     end if
  33. End Sub
  34.  
  35.  
  36. Sub Plugin_CheckData(ElementIndex)
  37. End Sub
  38.  
  39. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  s=GetUIElement(1)
  41.  if len(s)=0 then
  42.     s=RegReadValue(sV1)
  43.     if IsEmpty(s)=false then RegDeleteValue(sV1)
  44.  else
  45.     Call RegWriteValue(sV1,s,2)
  46.  end if
  47.  
  48. End Sub
  49.  
  50. Sub Plugin_Terminate 
  51. End Sub
  52.  
  53.  
  54.  
  55.